home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 6 / Eagles_Nest_Mac_Collection_Disc_6.TOAST / Windows / VBExamples / VB Examples.image / TSGLOB.BAS < prev    next >
BASIC Source File  |  1991-07-08  |  440b  |  23 lines

  1. ' TSGLOB.BAS
  2. ' Global declarations.
  3.  
  4. ' The record structure for one line on a time sheet.
  5.  
  6. Type WorkRecordType
  7.   DescriptField As String * 25
  8.   IDField As String * 10
  9.   StartField As Double
  10.   FinishedField As Double
  11. End Type
  12.  
  13. ' The path name for storing time sheet files.
  14.  
  15. Global Const PathName$ = "C:\WorkDay"
  16.  
  17. ' The extension name for time sheet files.
  18.  
  19. Global Const ExtName$ = "WKD"
  20.  
  21. ' End of global declarations.
  22.  
  23.